f7bfcbc24a6ed58636f3990b3f260111ab8a5aa6,community/server/src/test/java/org/neo4j/server/StartupTimeoutDocIT.java,StartupTimeoutDocIT,shouldNotTimeOutIfTimeoutDisabled,#,107
Before Change
@Ignore
public void shouldNotTimeOutIfTimeoutDisabled() throws IOException
{
Configurator configurator = buildProperties();
configurator.configuration().setProperty(Configurator.STARTUP_TIMEOUT, 0);
server = createSlowServer(configurator);
// When
After Change
@Test
public void shouldNotTimeOutIfTimeoutDisabled() throws IOException
{
Configurator configurator = buildProperties().withStartupTimeout( 0 ).atPort( 7480 ).build();
server = createSlowServer( configurator, false );
// When